c# array zaheln speichern

37

c# array zaheln speichern -

int[] zahlen = new int[8];]
for(int i = 0; i < zahlen.Length; i++)
{
    zahlen[i] = i + 1;
}

Comments

Submit
0 Comments